home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / E-P-O.ZIP / TEST-10.POV < prev    next >
Encoding:
Text File  |  1996-10-31  |  1.4 KB  |  53 lines

  1.  
  2. //------------------------------------------------------------------->
  3. //
  4. // test-10.pov
  5. //
  6. // "Easy POV Oven"
  7. //
  8. // Written By: Paul T. Dawson
  9. //             ptdawson@voicenet.com
  10. //             http://www.voicenet.com/~ptdawson
  11. //
  12. // All code and techniques are PUBLIC DOMAIN - have fun with it!
  13. //
  14. //------------------------------------------------------------------->
  15. //
  16. // This file is for testing the "Thing_5" object only.
  17. //
  18. //------------------------------------------------------------------->
  19. //
  20. // All of the usual initializing.
  21.  
  22.         #include "colors.inc"
  23.         #include "textures.inc"
  24.         #include "stones.inc"
  25.         #include "metals.inc"
  26.  
  27.         camera { location < 0, 4, -8 > look_at < 0, 0, 0 > }
  28.         light_source { < 0, 10, -10 > color rgb < 2, 2, 2 > }
  29.         background { White }
  30.         #default { finish { Shiny } }
  31.  
  32.         #declare R1 = seed(0)
  33.         #declare P4_RAND = seed(0)
  34.  
  35. //------------------------------------------------------------------->
  36. //
  37. // Get it and show it.
  38.  
  39.         #include "thing-5.inc"
  40.         object { Thing_5 rotate y * 15 }
  41.  
  42. //------------------------------------------------------------------->
  43. //
  44. // Make sure it fits in the pan.
  45.  
  46.         #include "bake-pan.inc"
  47.         object { Baking_Pan }
  48.  
  49. //------------------------------------------------------------------->
  50. //
  51. // End of this file.
  52.  
  53.